encoding/xml.Decoder.stk (field)

19 uses

	encoding/xml (current package)
		xml.go#L213: 	stk            *stack
		xml.go#L282: 	if d.stk != nil && d.stk.kind == stkEOF {
		xml.go#L290: 			if err == io.EOF && d.stk != nil && d.stk.kind != stkEOF {
		xml.go#L405: 	s.next = d.stk
		xml.go#L407: 	d.stk = s
		xml.go#L412: 	s := d.stk
		xml.go#L414: 		d.stk = s.next
		xml.go#L428: 	start := d.stk
		xml.go#L451: 	if d.stk == nil || d.stk.kind != stkEOF {
		xml.go#L508: 	for d.stk != nil && d.stk.kind != stkStart && d.stk.kind != stkEOF {
		xml.go#L523: 	if d.stk == nil || d.stk.kind != stkStart {
		xml.go#L526: 	name := strings.ToLower(d.stk.name.Local)
		xml.go#L532: 				return EndElement{d.stk.name}, true